home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / esc.jar / com / extensibility / xml / UnparsedEntityDeclaration.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-06-30  |  712 b   |  23 lines

  1. package com.extensibility.xml;
  2.  
  3. public class UnparsedEntityDeclaration extends GeneralEntityDeclaration {
  4.    String notation;
  5.  
  6.    public String getNotation() {
  7.       return this.notation;
  8.    }
  9.  
  10.    public void setNotation(String var1) {
  11.       this.notation = var1;
  12.    }
  13.  
  14.    public UnparsedEntityDeclaration(String var1, String var2, URI var3, String var4) {
  15.       super(var1, var2, var3);
  16.       this.notation = var4;
  17.    }
  18.  
  19.    public boolean isPE() {
  20.       return false;
  21.    }
  22. }
  23.